JanetDocsPlaygroundI'm feeling luckyGitHub sign in

<=



    function

    (<= & xs)

    Check if xs is in non-descending order. Returns a boolean.


1 exampleSign in to add an example
Loading...
(<= 1 2 3) # => true
(<= 1 2 1) # => false
pepePlayground